PROGRAMS=sched

clean:
	rm -f *.o
realclean: clean
	rm -f sched

all:
	gcc -o sched sched.c -lpthread
